home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-26 | 2.6 KB | 94 lines | [ttro/ttxt] |
- Popular Technical Analysis Indicators
- Expressed in Quest Equation Syntax (QES)
-
- This is a list of some common technical analysis indicators as converted to QES.
- Several indicators such as CCI, RSI, and ROC are not included here as there are built-in QES functions for them.
- “A:” and “B:” indicate equation pairs which are entered on separate lines to produce two traces.
-
-
- Band Width (TASC)
- (mas(C,20)+2*std(C,20))-(mas(C,20)-2*std(C,20))/mas(C,20)
-
- Binary Wave - (MACD + MvgAvg + ROC + Stochastic)
- if(osc(C,12,26)-mae(osc(C,12,26),9),1,-1)
- + if(C-mae(C,20),1,-1)
- + if(roc(C,12),1,-1)
- + if(stochk(5)-50,1,-1)
-
- Bollinger Bands
- A: mas(C,20)+2*std(C,20) {Upper}
- B: mas(C,20)-2*std(C,20) {Lower}
-
- Bull/Bear Power - Eldarray
- A: H-mae(C,13) {Bull Power}
- B: L-mae(C,13) {Bear Power}
-
- Custom A/D Oscillator
- sum(if(C-C[-2],1,-1,0))
-
- KST - Martin Pring
- mas(rocp(c,10),10) +2*mas(rocp(c,15),10)+3*mas(rocp(c,20),10) +4*mas(rocp(c,30),10)
-
- MA & MACD Binary Waves
- A: if(C-mae(C,20),1,-1)
- B: if(osc(C,8,17)-mae(osc(C,8,17),9),1,-1)
-
- MACD - Moving Average Convergence/Divergence
- A: osc(C,12,26) {MACD}
- B: mae(osc(C,12,26),9) {trigger}
-
- Median Price
- (max(H,10)-C)-(C-min(L,10))/(max(H,10)-min(L,10))
-
- Momentum
- roc(mae(C,10),10)
-
- Money Flow
- A: V*(2*C-L-H)/(H-L)
- B: sum(V*(2*C-L-H)/(H-L),21)/sum(V,21) {Chaikin}
-
- Morris RSI with Volume
- 100-100/(1+mas(if(roc(C,1),0,roc(C,1)*V),14) / mas(if(-roc(C,1),0,-roc(C,1)*V),14))
-
- Number of Std. Devs of Volume
- (V-mas(V,20))/(1000*std(V/1000,20))
-
- OBV - On Balance Volume (1000s)
- sum(if(CH, V/1000, -V/1000))
-
- RVI with Simple Moving Average (TASC)
- 100*mas(if(CH,std(C,10),0,0),14)/(mas(if(CH,std(C,10),0),14)+mas(if(-CH,std(C,10),0),14))
-
- PV Rank Combine (TASC)
- if(CH,if(V-V[-1],1,2),if(V-V[-1],4,3))
-
- RSI Binary Wave (using 30/70 crossover)
- if(rsi(C,10)-30,if(30-shift(rsi(C,10),-1),1, if(70-rsi(C,10),if(shift(rsi(C,10),-1)-70,-1,0),0)),0)
-
- RWI for Today’s High and Low
- A: (H-L[-16])/mas(H-L,16)*4 {High}
- B: (H[-16]-L)/mas(H-L,16)*4 {Low}
-
- Slope of Linear Regression Line
- (200*sum(cum(1)*C,200) - sum(cum(1),200)*sum(C,200)) / (200*sum(sqr(cum(1)),200) - sqr(sum(cum(1),200)))
-
- Smoothed Tick Momentum Line (TASC)
- mae(roc(sum(if(C-shift(mae(C,10),-1),1,-1)),5),5)
-
- Stochastics
- A: stochk(14) {%K}
- B: stochd(14) {%D}
-
- Summation Noise Indicator - Adam White
- (sum(abs(CH),14)-sum(abs(mas(C,10)-shift(mas(C,10),-1)),14))/sum(abs(CH),14)
-
- Trendscore - Tushar Chande (TASC)
- if(C-C[-11],1,-1) + if(C-C[-12],1,-1)
- + if(C-C[-13],1,-1) + if(C-C[-14],1,-1)
- + if(C-C[-15],1,-1) + if(C-C[-16],1,-1)
- + if(C-C[-17],1,-1) + if(C-C[-18],1,-1)
- + if(C-C[-19],1,-1) + if(C-C[-20],1,-1)
-
- Volume Binary Wave
- if(V-shift(mae(V,20),1),1,-1,0)
-